98f8e5f4cf90f69e91d8d0a0917bb3c4d08efb3c,src/main/java/mnm/mods/tabbychat/gui/ChatHandle.java,ChatHandle,drawComponent,#number#number#,14
Before Change
@Override
public void drawComponent(int mouseX, int mouseY) {
this.drawHorizontalLine(3, getBounds().width - 4, 3, getForeColor());
this.drawVerticalLine(getBounds().width - 4, 3, getBounds().height - 3, getForeColor());
}
@Override
After Change
@Override
public void drawComponent(int mouseX, int mouseY) {
this.drawHorizontalLine(3, getBounds().width - 4, 3, getForeColor().getHex());
this.drawVerticalLine(getBounds().width - 4, 3, getBounds().height - 3, getForeColor().getHex());
}
@Override